home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 242_01 / a51util.c < prev    next >
Text File  |  1989-01-11  |  14KB  |  542 lines

  1. /*
  2.     HEADER:        CUG242;
  3.     TITLE:        8051 Cross-Assembler (Portable);
  4.     FILENAME:    A51UTIL.C;
  5.     VERSION:    0.4;
  6.     DATE:        11/09/1988;
  7.     SEE-ALSO:    A51.H;
  8.     AUTHORS:    William C. Colley III;
  9. */
  10.  
  11. /*
  12.               8051 Cross-Assembler in Portable C
  13.  
  14.         Copyright (c) 1985,1987 William C. Colley, III
  15.  
  16. Revision History:
  17.  
  18. Ver    Date        Description
  19.  
  20. 0.0    JUL 1987    Adapted from version 0.0 of my portable 8048 cross-
  21.             assembler.  WCC3.
  22.  
  23. 0.1    OCT 1987    Changed the order of DW constants and made trailing
  24.             colons on labels get trashed.  WCC3.
  25.  
  26. 0.2    AUG 1988    Fixed bug that swapped the machine codes for CPL A and
  27.             CLR A.  WCC3.
  28.  
  29. 0.3    AUG 1988    Fixed a bug in the command line parser that puts it
  30.             into a VERY long loop if the user types a command line
  31.             like "A51 FILE.ASM -L".  WCC3 per Alex Cameron.
  32.  
  33. 0.4    NOV 1988    Fixed a bug that made DJNZ direct,relative generate
  34.             the wrong opcode.  WCC3.
  35.  
  36. This module contains the following utility packages:
  37.  
  38.     1)  symbol table building and searching
  39.  
  40.     2)  opcode and operator table searching
  41.  
  42.     3)  listing file output
  43.  
  44.     4)  hex file output
  45.  
  46.     5)  error flagging
  47. */
  48.  
  49. /*  Get global goodies:  */
  50.  
  51. #include "a51.h"
  52.  
  53. /*  Make sure that MSDOS compilers using the large memory model know    */
  54. /*  that calloc() returns pointer to char as an MSDOS far pointer is    */
  55. /*  NOT compatible with the int type as is usually the case.        */
  56.  
  57. char *calloc();
  58.  
  59. /*  Get access to global mailboxes defined in A51.C:            */
  60.  
  61. extern char errcode, line[], title[];
  62. extern int eject, listhex;
  63. extern unsigned address, bytes, errors, listleft, obj[], pagelen;
  64.  
  65. /*  The symbol table is a binary tree of variable-length blocks drawn    */
  66. /*  from the heap with the calloc() function.  The root pointer lives    */
  67. /*  here:                                */
  68.  
  69. static SYMBOL *sroot = NULL;
  70.  
  71. /*  Add new symbol to symbol table.  Returns pointer to symbol even if    */
  72. /*  the symbol already exists.  If there's not enough memory to store    */
  73. /*  the new symbol, a fatal error occurs.                */
  74.  
  75. SYMBOL *new_symbol(nam)
  76. char *nam;
  77. {
  78.     SCRATCH int i;
  79.     SCRATCH SYMBOL **p, *q;
  80.     void fatal_error();
  81.  
  82.     for (p = &sroot; (q = *p) && (i = strcmp(nam,q -> sname)); )
  83.     p = i < 0 ? &(q -> left) : &(q -> right);
  84.     if (!q) {
  85.     if (!(*p = q = (SYMBOL *)calloc(1,sizeof(SYMBOL) + strlen(nam))))
  86.         fatal_error(SYMBOLS);
  87.     strcpy(q -> sname,nam);
  88.     }
  89.     return q;
  90. }
  91.  
  92. /*  Look up symbol in symbol table.  Returns pointer to symbol or NULL    */
  93. /*  if symbol not found.                        */
  94.  
  95. SYMBOL *find_symbol(nam)
  96. char *nam;
  97. {
  98.     SCRATCH int i;
  99.     SCRATCH SYMBOL *p;
  100.  
  101.     for (p = sroot; p && (i = strcmp(nam,p -> sname));
  102.     p = i < 0 ? p -> left : p -> right);
  103.     return p;
  104. }
  105.  
  106. /*  Opcode table search routine.  This routine pats down the opcode    */
  107. /*  table for a given opcode and returns either a pointer to it or    */
  108. /*  NULL if the opcode doesn't exist.                    */
  109.  
  110. OPCODE *find_code(nam)
  111. char *nam;
  112. {
  113.     OPCODE *bsearch();
  114.  
  115.     static OPCODE opctbl[] = {
  116.     { AJMP,                    0x11,    "ACALL"    },
  117.     { ADD + ((R7 - A) << 5) + A,        0x24,    "ADD"    },
  118.     { ADD + ((R7 - A) << 5) + A,        0x34,    "ADDC"    },
  119.     { AJMP,                    0x01,    "AJMP"    },
  120.     { ORL + ((R7 - AT_R0) << 5) + AT_R0,    0x54,    "ANL"    },
  121.     { PSEUDO,                BIT,    "BIT"    },
  122.     { CJNE,                    0xb4,    "CJNE"    },
  123.     { CPL,                    0xc3,    "CLR"    },
  124.     { CPL,                    0xb3,    "CPL"    },
  125.     { SWAP + A,                0xd4,    "DA"    },
  126.     { PSEUDO,                DB,    "DB"    },
  127.     { DEC + ((R7 - A) << 5) + A,        0x14,    "DEC"    },
  128.     { SWAP + AB,                0x74,    "DIV"    },
  129.     { DJNZ + ((R7 - R0) << 5) + R0,        0xd4,    "DJNZ"    },
  130.     { PSEUDO,                DS,    "DS"    },
  131.     { PSEUDO,                DW,    "DW"    },
  132.     { PSEUDO + ISIF,            ELSE,    "ELSE"    },
  133.     { PSEUDO,                END,    "END"    },
  134.     { PSEUDO + ISIF,            ENDIF,    "ENDIF"    },
  135.     { PSEUDO,                EQU,    "EQU"    },
  136.     { PSEUDO + ISIF,            IF,    "IF"    },
  137.     { INC + ((R7 - A) << 5) + A,        0x04,    "INC"    },
  138.     { PSEUDO,                INCL,    "INCL"    },
  139.     { JBIT,                    0x20,    "JB"    },
  140.     { JBIT,                    0x10,    "JBC"    },
  141.     { SJMP,                    0x40,    "JC"    },
  142.     { JMP + DPTR,                0x73,    "JMP"    },
  143.     { JBIT,                    0x30,    "JNB"    },
  144.     { SJMP,                    0x50,    "JNC"    },
  145.     { SJMP,                    0x70,    "JNZ"    },
  146.     { SJMP,                    0x60,    "JZ"    },
  147.     { LJMP,                    0x12,    "LCALL"    },
  148.     { LJMP,                    0x02,    "LJMP"    },
  149.     { MOV + ((R7 - AT_R0) << 5) + AT_R0,    0,    "MOV"    },
  150.     { MOVC + ((DPTR - PC) << 5) + PC,    0x93,    "MOVC"    },
  151.     { MOVX + ((AT_R1-AT_R0) << 5) + AT_R0,    0xe0,    "MOVX"    },
  152.     { SWAP + AB,                0x94,    "MUL"    },
  153.     { RET,                    0x00,    "NOP"    },
  154.     { PSEUDO,                ORG,    "ORG"    },
  155.     { ORL + ((R7 - AT_R0) << 5) + AT_R0,    0x44,    "ORL"    },
  156.     { PSEUDO,                PAGE,    "PAGE"    },
  157.     { POP,                    0xd0,    "POP"    },
  158.     { POP,                    0xc0,    "PUSH"    },
  159.     { PSEUDO,                REGI,    "REG"    },
  160.     { RET,                    0x22,    "RET"    },
  161.     { RET,                    0x32,    "RETI"    },
  162.     { SWAP + A,                0x23,    "RL"    },
  163.     { SWAP + A,                0x33,    "RLC"    },
  164.     { SWAP + A,                0x03,    "RR"    },
  165.     { SWAP + A,                0x13,    "RRC"    },
  166.     { PSEUDO,                SET,    "SET"    },
  167.     { SETB,                    0xd3,    "SETB"    },
  168.     { SJMP,                    0x80,    "SJMP"    },
  169.     { ADD + ((R7 - A) << 5) + A,        0x94,    "SUBB"    },
  170.     { SWAP + A,                0xc4,    "SWAP"    },
  171.     { PSEUDO,                TITL,    "TITL"    },
  172.     { XCH + ((R7 - AT_R0) << 5) + AT_R0,    0xc4,    "XCH"    },
  173.     { XCHD + ((AT_R1-AT_R0) << 5) + AT_R0,    0xd4,    "XCHD"    },
  174.     { XRL + ((R7 - AT_R0) << 5) + AT_R0,    0x64,    "XRL"    }
  175.     };
  176.  
  177.     return bsearch(opctbl,opctbl + (sizeof(opctbl) / sizeof(OPCODE)),nam);
  178. }
  179.  
  180. /*  Operator table search routine.  This routine pats down the        */
  181. /*  operator table for a given operator and returns either a pointer    */
  182. /*  to it or NULL if the opcode doesn't exist.                */
  183.  
  184. OPCODE *find_operator(nam)
  185. char *nam;
  186. {
  187.     OPCODE *bsearch();
  188.  
  189.     static OPCODE oprtbl[] = {
  190.     { UNARY  + UOP1  + OPR,        '$',        "$"        },
  191.     { REG,                A,        "A"        },
  192.     { REG,                AB,        "AB"        },
  193.     { BVAL,                0xd6,        "AC"        },
  194.     { VAL,                0xe0,        "ACC"        },
  195.     { BINARY + LOG1  + OPR,        AND,        "AND"        },
  196.     { VAL,                0xf0,        "B"        },
  197.     { REG,                C,        "C"        },
  198.     { BVAL,                0xd7,        "CY"        },
  199.     { VAL,                0x83,        "DPH"        },
  200.     { VAL,                0x82,        "DPL"        },
  201.     { REG,                DPTR,        "DPTR"        },
  202.     { BVAL,                0xaf,        "EA"        },
  203.     { BINARY + RELAT + OPR,        '=',        "EQ"        },
  204.     { BVAL,                0xac,        "ES"        },
  205.     { BVAL,                0xa9,        "ET0"        },
  206.     { BVAL,                0xab,        "ET1"        },
  207.     { BVAL,                0xa8,        "EX0"        },
  208.     { BVAL,                0xaa,        "EX1"        },
  209.     { BVAL,                0xd5,        "F0"        },
  210.     { BINARY + RELAT + OPR,        GE,        "GE"        },
  211.     { BINARY + RELAT + OPR,        '>',        "GT"        },
  212.     { UNARY  + UOP3  + OPR,        HIGH,        "HIGH"        },
  213.     { VAL,                0xa8,        "IE"        },
  214.     { BVAL,                0x89,        "IE0"        },
  215.     { BVAL,                0x8b,        "IE1"        },
  216.     { VAL,                0xb8,        "IP"        },
  217.     { BVAL,                0x88,        "IT0"        },
  218.     { BVAL,                0x8a,        "IT1"        },
  219.     { BINARY + RELAT + OPR,        LE,        "LE"        },
  220.     { UNARY  + UOP3  + OPR,        LOW,        "LOW"        },
  221.     { BINARY + RELAT + OPR,        '<',        "LT"        },
  222.     { BINARY + MULT  + OPR,        MOD,        "MOD"        },
  223.     { BINARY + RELAT + OPR,        NE,        "NE"        },
  224.     { UNARY  + UOP2  + OPR,        NOT,        "NOT"        },
  225.     { BINARY + LOG2  + OPR,        OR,        "OR"        },
  226.     { BVAL,                0xd2,        "OV"        },
  227.     { BVAL,                0xd0,        "P"        },
  228.     { VAL,                0x80,        "P0"        },
  229.     { VAL,                0x90,        "P1"        },
  230.     { VAL,                0xa0,        "P2"        },
  231.     { VAL,                0xb0,        "P3"        },
  232.     { REG,                PC,        "PC"        },
  233.     { VAL,                0x87,        "PCON"        },
  234.     { VAL,                0xd0,        "PSW"        },
  235.     { BVAL,                0xb9,        "PT0"        },
  236.     { BVAL,                0xbb,        "PT1"        },
  237.     { BVAL,                0xb8,        "PX0"        },
  238.     { BVAL,                0xba,        "PX1"        },
  239.     { REG,                R0,        "R0"        },
  240.     { REG,                R1,        "R1"        },
  241.     { REG,                R2,        "R2"        },
  242.     { REG,                R3,        "R3"        },
  243.     { REG,                R4,        "R4"        },
  244.     { REG,                R5,        "R5"        },
  245.     { REG,                R6,        "R6"        },
  246.     { REG,                R7,        "R7"        },
  247.     { BVAL,                0x9a,        "RB8"        },
  248.     { BVAL,                0x9c,        "REN"        },
  249.     { BVAL,                0x98,        "RI"        },
  250.     { BVAL,                0xd3,        "RS0"        },
  251.     { BVAL,                0xd4,        "RS1"        },
  252.     { VAL,                0x99,        "SBUF"        },
  253.     { VAL,                0x98,        "SCON"        },
  254.     { BINARY + MULT  + OPR,        SHL,        "SHL"        },
  255.     { BINARY + MULT  + OPR,        SHR,        "SHR"        },
  256.     { BVAL,                0x9f,        "SM0"        },
  257.     { BVAL,                0x9e,        "SM1"        },
  258.     { BVAL,                0x9d,        "SM2"        },
  259.     { VAL,                0x81,        "SP"        },
  260.     { BVAL,                0x9b,        "TB8"        },
  261.     { VAL,                0x88,        "TCON"        },
  262.     { BVAL,                0x8d,        "TF0"        },
  263.     { BVAL,                0x8f,        "TF1"        },
  264.     { VAL,                0x8c,        "TH0"        },
  265.     { VAL,                0x8d,        "TH1"        },
  266.     { BVAL,                0x99,        "TI"        },
  267.     { VAL,                0x8a,        "TL0"        },
  268.     { VAL,                0x8b,        "TL1"        },
  269.     { VAL,                0x89,        "TMOD"        },
  270.     { BVAL,                0x8c,        "TR0"        },
  271.     { BVAL,                0x8e,        "TR1"        },
  272.     { BINARY + LOG2  + OPR,        XOR,        "XOR"        }
  273.     };
  274.  
  275.     return bsearch(oprtbl,oprtbl + (sizeof(oprtbl) / sizeof(OPCODE)),nam);
  276. }
  277.  
  278. static OPCODE *bsearch(lo,hi,nam)
  279. OPCOD